From: Mike Hommey Date: Tue, 7 Apr 2020 23:43:20 +0000 (+0900) Subject: [PATCH] Allow to build with older versions of nodejs 10 X-Git-Tag: archive/raspbian/1%102.15.1-1_deb10u1+rpi1^2~3 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=bcc0f13f4c311b5dc3dbf66fdff7383f6f0f9ae1;p=thunderbird.git [PATCH] Allow to build with older versions of nodejs 10 Gbp-Pq: Topic debian-hacks Gbp-Pq: Name PATCH-Allow-to-build-with-older-versions-of-nodejs-10.patch --- diff --git a/python/mozbuild/mozbuild/nodeutil.py b/python/mozbuild/mozbuild/nodeutil.py index 54f4264fa4..4deaed4a22 100644 --- a/python/mozbuild/mozbuild/nodeutil.py +++ b/python/mozbuild/mozbuild/nodeutil.py @@ -13,7 +13,7 @@ from mozboot.util import get_tools_dir from mozfile import which from six import PY3 -NODE_MIN_VERSION = StrictVersion("10.24.1") +NODE_MIN_VERSION = StrictVersion("10.0") NPM_MIN_VERSION = StrictVersion("6.14.12")